home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 October / Macworld (1998-10).dmg / Shareware World / Info / For Developers / MacZoop 1.8.4 / More Classes / Undo / ZUndoTask.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1998-05-06  |  2.4 KB  |  97 lines  |  [TEXT/CWIE]

  1. /*************************************************************************************************
  2. *
  3. *
  4. *            MacZoop - "the framework for the rest of us"         
  5. *
  6. *
  7. *
  8. *            ZUndoTask.cpp            -- a generic object for implementing Undo
  9. *
  10. *
  11. *
  12. *
  13. *
  14. *            © 1996, Graham Cox
  15. *
  16. *
  17. *
  18. *
  19. *************************************************************************************************/
  20.  
  21. #include    "ZUndoTask.h"
  22. #include    "ZWindow.h"
  23. #include    "MacZoop.h"
  24.  
  25. /*------------------------------***  CONSTRUCTOR  ***--------------------------------*/
  26.  
  27. ZUndoTask::ZUndoTask( Str63 aTaskString, ZWindow*    aTarget)
  28. {
  29.     CopyPString( aTaskString, taskString );
  30.     itsTarget = aTarget;
  31.     undone = FALSE;
  32.     isFirstTask = FALSE;
  33. }
  34.  
  35.  
  36. ZUndoTask::ZUndoTask( const short strListID, const short strListIndex, ZWindow* aTarget )
  37. {
  38.     GetIndString( taskString, strListID, strListIndex );
  39.     itsTarget = aTarget;
  40.     undone = FALSE;
  41.     isFirstTask = FALSE;
  42. }
  43.  
  44.  
  45. /*-------------------------------------***  DO  ***-------------------------------------*/
  46. /*    
  47. perform the task. This is normally overridden to do something useful! You should call the
  48. inherited method to maintain the status flag.
  49. ----------------------------------------------------------------------------------------*/
  50.  
  51. void    ZUndoTask::Do()
  52. {
  53.     undone = FALSE;
  54.  
  55.     if ( itsTarget && isFirstTask )
  56.         itsTarget->SetDirty( TRUE );
  57. }
  58.  
  59.  
  60. /*------------------------------------***  UNDO  ***------------------------------------*/
  61. /*    
  62. undo the task performed by Do. Normally overridden- call the inherited method to maintain
  63. the status flag.
  64. ----------------------------------------------------------------------------------------*/
  65.  
  66. void    ZUndoTask::Undo()
  67. {
  68.     undone = TRUE;
  69.     
  70.     if ( itsTarget && isFirstTask )
  71.         itsTarget->SetDirty( FALSE );
  72. }
  73.  
  74.  
  75. /*------------------------------------***  REDO  ***------------------------------------*/
  76. /*
  77. override if your redo is different from your Do. Normally they are not so you don't need
  78. to override this in most cases.    
  79. ----------------------------------------------------------------------------------------*/
  80.  
  81. void    ZUndoTask::Redo()
  82. {
  83.     Do();
  84. }
  85.  
  86.  
  87. /*------------------------------***  GETTASKSTRING  ***---------------------------------*/
  88. /*
  89. returns the task's string. Normally only called from the application to maintain the
  90. wording in the Edit menu.
  91. ----------------------------------------------------------------------------------------*/
  92.  
  93. void    ZUndoTask::GetTaskString( Str63 aTaskStr )
  94. {
  95.     CopyPString( taskString, aTaskStr );
  96. }
  97.